home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mantis_detect.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6.  
  7. if(description)
  8. {
  9.  script_id(11652);
  10.  script_version ("$Revision: 1.5 $");
  11.  
  12.  
  13.  name["english"] = "Mantis Detection";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. This script detects whether the mantis bug tracking
  19. system is running on the remote host, and extracts its 
  20. version if it is.
  21.  
  22. Risk factor : None";
  23.  
  24.  
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Checks for the presence of mantis";
  30.  
  31.  script_summary(english:summary["english"], francais:summary["francais"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security",
  37.         francais:"Ce script est Copyright (C) 2003 Tenable Network Security");
  38.  family["english"] = "CGI abuses";
  39.  family["francais"] = "Abus de CGI";
  40.  script_family(english:family["english"], francais:family["francais"]);
  41.  script_dependencie("find_service.nes", "http_version.nasl");
  42.  script_require_ports("Services/www", 80);
  43.  exit(0);
  44. }
  45.  
  46. #
  47. # The script code starts here
  48. #
  49.  
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52.  
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if(!get_port_state(port))exit(0);
  57. if(!can_host_php(port:port)) exit(0);
  58.  
  59.  
  60. foreach d (make_list("/bugs", "/mantis", cgi_dirs()))
  61. {
  62.  req = http_get(item:string(d, "/login_page.php"), port:port);
  63.  res = http_keepalive_send_recv(port:port, data:req);
  64.  if( res == NULL ) exit(0);
  65.  res = egrep(pattern:"http://mantisbt\.sourceforge\.net", string:res, icase:TRUE);
  66.  if( res )
  67.  {
  68.   vers = ereg_replace(pattern:".*Mantis ([^<]*).*", string:res, replace:"\1", icase:TRUE);
  69.   set_kb_item(name:string("www/", port, "/mantis/version"),
  70.             value:vers);
  71.           
  72.   rep = "The remote host is running Mantis " + vers + " under /" + d;
  73.   security_note(port:port, data:rep);
  74.   exit(0);     
  75.  }
  76.